home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-03-04 | 542 b | 33 lines | [TEXT/ToyS] |
- on run
- tell application "Note Pad" to activate
-
- SelectAll()
-
- input state {keys down:"Hello World!"}
- pause for 5 with seconds timing
-
- SelectAll()
- pause for 30 -- Just for the user to see what's happening
- EditCut()
- pause for 30
- AppQuit()
- end run
-
-
- on SelectAll()
- -- Select all
- input state {keys down:"A", command key down:true}
- end SelectAll
-
-
- on EditCut()
- -- Select all
- input state {keys down:"X", command key down:true}
- end EditCut
-
-
- on AppQuit()
- -- Select all
- input state {keys down:"Q", command key down:true}
- end AppQuit
-